body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

header {
    background-color: #333;
    color: #fff;
    padding: 10px 0;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

nav li {
    margin: 0 10px;
}

nav a {
    color: #fff;
    text-decoration: none;
}

main {
    padding: 20px;
}

section.hero {
    text-align: center;
    margin-bottom: 20px;
}

section.features {
    text-align: center;
}

footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
}

.btn {
    display: inline-block;
    background-color: #bcc2c8;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
}

		
.logo {
            width: 100px;
            height: 100px;
            margin: 0 20px;
        }
.icp-info {
            text-align: center;
            margin-top: 10px;
        }
		
.service-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            margin-top: 20px;
			
            align-items: center;
			
        }
.service-item {
            width: 300px;
            margin: 20px;
            text-align: center;
        }
.service-item img {
            width: 100px;
            height: 100px;
            margin-bottom: 10px;
        }
